home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 1
/
Gold Medal Software Volume 1 (Gold Medal) (1994).iso
/
prog
/
dasv10_.arj
/
CALCDAM.CPP
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-08-12
|
217 b
|
14 lines
// dice.lib function calc_damage()
int calc_damage(int damage,int die)
{
int normal1;
if (damage==1 && die==6) {
normal1+=2;
}
if (damage==1 && die<6 && die>1) {
normal1+=1;
}
return normal1;
}